Package email.calender

Source Code of email.calender.AsposeNewCalenderItems

package email.calender;

import java.util.Date;

import com.aspose.email.AppointmentSaveFormat;
import com.aspose.email.MapiCalendar;

public class AsposeNewCalenderItems
{
  public static void main(String[] args) throws Exception
  {
    // Create the appointment
    MapiCalendar appointment = new MapiCalendar(
        "LAKE ARGYLE WA 6743",
        "Appointment",
        "This is a very important meeting :)",
        new Date(2012, 10, 2, 13, 0, 0),
        new Date(2012, 10, 2, 14, 0, 0));

    appointment.save("data/AsposeCalendarItem.ics", AppointmentSaveFormat.Ics);
  }
}
TOP

Related Classes of email.calender.AsposeNewCalenderItems

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.